home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / biz / demo / eTeacherDemo.lha / StartUp.script < prev    next >
Text File  |  1998-08-31  |  2KB  |  53 lines

  1.  
  2. ; **********************************************************************
  3. ; **                                                                  **
  4. ; **          StartUp script - Called on startup by eTeacher          **
  5. ; **       ------------------------------------------------------     **
  6. ; **                                                                  **
  7. ; **        You can add whatever you find useful or needed here,      **
  8. ; **          i.e. you can mount CD-ROM or assign whatever you        **
  9. ; **                  with or do something like that...               **
  10. ; **                                                                  **
  11. ; **              Electronic Teacher 5 CD © 1998 W.F.M.H.             **
  12. ; **                                                                  **
  13. ; **********************************************************************
  14. ;
  15. ; OK, let's do the job...
  16. ; -----------------------------
  17. ;
  18. ; Do NOT remove this! eTeacher does not check result
  19. ; codes, so it's better to try to finish the script execution
  20. ; even if single command fails...
  21.  
  22. FAILAT 99
  23.  
  24.  
  25. ; Following line is also REQUIRED, as we didn't want to put
  26. ; our fonts to global FONTS: directory. So we need to add
  27. ; the assign and tell AmigaDOS where to look for fonts too,
  28. ; because Electronic Teacher can't live without them...
  29.  
  30. ASSIGN <>NIL: FONTS: FONTS ADD
  31.  
  32.  
  33. ; Your turn - add whatever you with below.
  34. ; ---------------------------------------------------
  35. ;
  36. ; If you are not familiar with scripts:
  37. ;
  38. ; 1. To add your custom assigns:
  39. ;      ASSIGN YOUR_ASSIGN: ADD
  40. ;
  41. ;    If you don't want this assign to be used until you refer to it,
  42. ;    use DEFER switch:
  43. ;
  44. ;      ASSIGN YOUR_ASSIGN: ADD DEFER
  45. ; 2. To mount any unmounted volume (e.g. if you want your
  46. ;    CD-ROM drive to be visible as CD0:, and proper mountlist exists):
  47. ;
  48. ;      MOUNT CD0:
  49. ;
  50. ;    Please refer AmigaDOS manual for more information.
  51.  
  52.